home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1994 / MacHack 1994.toast / MacHack™ 1987-1994 / MacHack™ '90 / Source Code ƒ.sea / Source Code ƒ / MPW C ƒ / NetTimeProtocol ƒ / MakeFile next >
Encoding:
Makefile  |  1990-03-23  |  2.0 KB  |  56 lines  |  [TEXT/MPS ]

  1. MakeFileTEXTMPS ⁄¢0    Ë¢0    ËÅÅÕ€: Change (*tp == ';') to (*tp == ';' || *tp == ',')
  2.  
  3.     * lexi.c: Change #include "ctype.h" to #include <ctype.h>
  4.  
  5.     * io.c (count_spaces): Replace quoted actual ^H in source file
  6.     with 010.
  7.  
  8.     * various: Remove formfeeds (and one spurious ^\ that snuck into
  9.     a comment in parse.c).
  10.  
  11.     * io.c (dump_line): Convert random text after #else and #endif
  12.     to comments.
  13.  
  14.     * various: Remove unnecessary semicolons after "}".
  15.  
  16.     * indent.c (main, case comment) Remove unnecesary label proc_comment.
  17.  
  18.     * indent.c (main): Allow space between '#' and preprocessor
  19.     directives (two changes: 1. skip over the space; 2. change
  20.     strncmp's with "#if", "#else", and "#endif" to compare with
  21.     "if", etc. instead.).
  22.  
  23.     * indent.c (main): Break declarations after comma if the
  24.     declaration is getting too long.
  25.  
  26.     * args.c (set_option, PRO_INT): Check for !isdigit, not just
  27.     for end of string.
  28.  
  29.     * args.c (option_source): Add variable and code using it.
  30.  
  31.     * indent.c (main, search_brace, case lbrace): Put braces around
  32.     "else" code in "if (btype_2)".
  33.  
  34. Thu Aug 31 20:25:27 1989  Jim Kingdon  (kingdon at apple-gunkies.ai.mit.edu)
  35.  
  36.     * indent_globs.h: Replace check_size with check_{code,com,lab}_size.
  37.     everywhere: Replace calls to check_size with calls to
  38.     check_{code,com,lab}_size.
  39.  
  40.     * indent.c (main, case rparen): Do not set last_tokump_line on '{' if
  41.     line is empty.
  42.  
  43. Sun Sep  3 13:37:17 1989  Jim Kingdon  (kingdon at apple-gunkies.ai.mit.edu)
  44.  
  45.     * args.c: Remove PRO_STDIN and have -st just set use_stdinout.
  46.     indent.c (main): Check use_stdinout.
  47.     indent_globs.h: Add use_stdinout
  48.  
  49.     * indent.c (main, case lbrace): Set parser_state_tos->in_or_st
  50.     to false.
  51.  
  52. Sat Sep  2 20:53:11 1989  Jim Kingdon  (kingdon at apple-gunkies.ai.mit.edu)
  53.  
  54.     * parse.c (reduce): Tidy up comment before reduce.
  55.  
  56.     * lexi.c (lexi)